home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / fd2pragma / scripts / makeppcstuff < prev    next >
AmigaDOS Script File  |  2000-02-28  |  517b  |  20 lines

  1. .key FDFILE/A,CLIBFILE/A,DEST/A
  2. .bra {
  3. .ket }
  4.  
  5. ; $VER: MakePPCStuff 1.0 (31.12.1998)
  6. ; script to create all the needed library stuff with FD2Pragma
  7. ; DEST must already exist and should be empty.
  8.  
  9. FailAt 21
  10.  
  11. MakeDir >NIL: {DEST}proto
  12. MakeDir >NIL: {DEST}powerup/ppcpragmas
  13. MakeDir >NIL: {DEST}powerup/ppcinline
  14.  
  15. FD2Pragma {FDFILE} SPECIAL 53 CLIB {CLIBFILE} TO {DEST}powerup/ppcpragmas/
  16. FD2Pragma {FDFILE} SPECIAL 54 TO {DEST}proto/
  17. FD2Pragma {FDFILE} SPECIAL 50 CLIB {CLIBFILE} TO {DEST}powerup/ppcinline/
  18.  
  19. FailAt 10
  20.